home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19960209-19960425 / 000322_news@columbia.edu _Wed Apr 3 16:13:58 1996.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: news@columbia.edu
  2. Received: from apakabar.cc.columbia.edu (apakabar.cc.columbia.edu [128.59.35.159]) by watsun.cc.columbia.edu (8.7.3/8.7.3) with ESMTP id QAA29343 for <kermit.misc@watsun>; Wed, 3 Apr 1996 16:13:57 -0500 (EST)
  3. Received: (from news@localhost) by apakabar.cc.columbia.edu (8.7.3/8.7.3) id QAA21671 for kermit.misc@watsun; Wed, 3 Apr 1996 16:13:51 -0500 (EST)
  4. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  5. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: Script for transferring file using C-Kermit
  8. Date: 3 Apr 1996 21:13:33 GMT
  9. Organization: Columbia University
  10. Lines: 43
  11. Message-ID: <4juplt$l4v@apakabar.cc.columbia.edu>
  12. References: <4jukb5$ip4@apakabar.cc.columbia.edu>
  13. NNTP-Posting-Host: watsun.cc.columbia.edu
  14.  
  15. In article <4jukb5$ip4@apakabar.cc.columbia.edu>,
  16. Nilesh L. Jain <jainnil@cucis.cis.columbia.edu> wrote:
  17. : I have C-Kermit 5A(188)...
  18. :
  19. The current version is 5A(190)...
  20.  
  21. : ... on two IBM RS/6000 running AIX 3.x
  22. : I have a modem on each of them, one configured to dial out (host 
  23. : machine), and the other to receive calls (remote machine).
  24. : I need to automatically send a file over each night and was looking for
  25. : a script to ease the task.
  26. : When I do it manually, I start kermit on the host machine, dial using 
  27. : atdt, log onto the remote machine, change to appropriate directory, start 
  28. : kermit and set it to receive, break to host kermit and send file, 
  29. : re-connect to remote kermit, quit and logout, break and quit from host 
  30. : kermit.
  31. : I am sure there must be scripts to automatically specify a phone number, 
  32. : user name and password, remote directory, and local file name for doing 
  33. : the transfer.  I would appreciate any help with such a script.  If need 
  34. : be, I am willing to download a new version of kermit to facilitate this.
  35. Script programming is explained in detail in three chapters of the user
  36. manual, "Using C-Kermit".  Yours is a very straightforward application,
  37. but nevertheless there is no canned script that you can plug in and use.
  38. Connection and login procedures differ from place to place, and so on, so
  39. you have to understand a little bit about what you are doing.
  40.  
  41. The basic notion is that the OUTPUT command is used to send any characters
  42. that you would type; the INPUT command is used to scan for prompts; the
  43. IF FAILURE or IF SUCCESS commands are used to check whether INPUT commands
  44. succeed or fail.  All of this replaces the CONNECT command, and what you
  45. type with your fingers and see with your eyes.
  46.  
  47. Please refer to the manual for copious examples and explanations.
  48.  
  49. Details about the current version, the manual, and where to get them are
  50. available on the Web at:
  51.  
  52.   http://www.columbia.edu/kermit/
  53.  
  54. - Frank